home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et-2_2.lha / et2.2 / src / SERVER / ServerFont.h < prev    next >
C/C++ Source or Header  |  1989-07-21  |  487b  |  29 lines

  1. #ifndef ServerFont_First
  2. #define ServerFont_First
  3.  
  4. #include "Font.h"
  5.  
  6. class ServerFont: public Font {
  7.     int id;
  8.     
  9. public:
  10.     ServerFont(char*, GrFont, int, GrFace);
  11.     ~ServerFont();
  12.     
  13.     bool Loaded();
  14.     int GetId()
  15.     { return id; }
  16.     bool LoadFont();
  17.     Font *MakeFont(Font**, GrFace fc);
  18. };
  19.  
  20. class ServerFontManager: public FontManager {
  21. public:
  22.     ServerFontManager(char *lib) : (lib)
  23.     { }
  24.     Font* MakeFont(char*, GrFont, int, GrFace);
  25. };
  26.  
  27. #endif ServerFont_First
  28.  
  29.